home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / comm2 / xbtx.lha / Source / IORawSerial.hpp < prev    next >
C/C++ Source or Header  |  1995-12-03  |  3KB  |  106 lines

  1. /*
  2. **    $Id: IORawSerial.hpp 1.4 1995/12/03 12:16:23 olsen Exp olsen $
  3. **
  4. **    :ts=4
  5. */
  6.  
  7. /*
  8.  * Copyright © 1995 by Olaf Barthel, All Rights Reserved
  9.  *
  10.  * Redistribution and use in source and binary forms, with or without
  11.  * modification, are permitted provided that the following conditions
  12.  * are met:
  13.  * 1. Redistributions of source code must retain the above copyright
  14.  *    notice, this list of conditions and the following disclaimer.
  15.  * 2. Redistributions in binary form must reproduce the above copyright
  16.  *    notice, this list of conditions and the following disclaimer in the
  17.  *    documentation and/or other materials provided with the distribution.
  18.  *
  19.  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
  20.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  21.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO
  22.  * EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  23.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  24.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  25.  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  26.  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  27.  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  28.  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29.  *
  30.  * This software has not been validated by the ``Bundesamt fuer Zulassungen in
  31.  * der Telekommunikation'' of the ``Deutsche Bundepost Telekom'' and thus
  32.  * must not be used for accessing the BTX-Network of the Telekom in Germany.
  33.  *
  34.  * Diese Software hat keine Zulassung durch das Bundesamt fuer Zulassungen in
  35.  * der Telekommunikation der Deutschen Bundespost Telekom und darf daher nicht
  36.  * am Netz der Deutschen Bundespost Telekom in Deutschland betrieben werden.
  37.  */
  38.  
  39. #ifndef _IORAWSERIAL_HPP
  40. #define _IORAWSERIAL_HPP 1
  41.  
  42. /****************************************************************************/
  43.  
  44. #ifndef _TYPES_HPP
  45. #include "Types.hpp"
  46. #endif
  47.  
  48. #ifndef _IOCHANNEL_HPP
  49. #include "IOChannel.hpp"
  50. #endif
  51.  
  52. /****************************************************************************/
  53.  
  54. class IORawSerial : public IOChannel
  55. {
  56.     public:
  57.  
  58.         IORawSerial();
  59.         ~IORawSerial();
  60.  
  61.         LONG Open(CONST STRPTR Channel,ULONG Unit=0,ULONG Baud=0,BOOL RTS_CTS=-1);
  62.         VOID Close(VOID);
  63.  
  64.         LONG GetChar(LONG Timeout=0);
  65.         VOID PutChar(UBYTE Char) { PutString((CONST STRPTR)&Char,1); }
  66.         VOID PutString(CONST STRPTR String,LONG Len=-1);
  67.  
  68.         LONG GetCharDirect(LONG Timeout=0) { return(GetChar(Timeout)); };
  69.         VOID PutCharDirect(UBYTE Char) { PutChar(Char); };
  70.         VOID PutStringDirect(CONST STRPTR String,LONG Len=-1) { PutString(String,Len); };
  71.  
  72.         VOID Flush(VOID);
  73.  
  74.         LONG Waiting(VOID);
  75.  
  76.         ULONG WaitMask(VOID);
  77.  
  78.     private:
  79.         struct IOExtSer     *ReadRequest;
  80.         struct IOExtSer     *WriteRequest;
  81.  
  82.         struct MsgPort        *ReadPort;
  83.         struct MsgPort        *WritePort;
  84.  
  85.         struct MsgPort        *TimePort;
  86.         struct timerequest    *TimeRequest;
  87.  
  88.         ULONG                 ReadMask;
  89.         ULONG                 TimeMask;
  90.         UBYTE                 SingleChar;
  91.  
  92.         BOOL                 Reading;
  93.         BOOL                 Ticking;
  94.         BOOL                 Valid;
  95.  
  96.         VOID StartTime(ULONG Seconds,ULONG Micros=0);
  97.         VOID StopTime(VOID);
  98.         VOID WaitTime(VOID);
  99.  
  100.         VOID StartRead(VOID);
  101.         VOID StopRead(VOID);
  102.         BYTE WaitRead(VOID);
  103. };
  104.  
  105. #endif    // _IORAWSERIAL_HPP
  106.